home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000238_news@columbia.edu_Sun Aug 27 14:09:53 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08473
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 28 Aug 1995 16:41:11 -0400
  3. Received: by apakabar.cc.columbia.edu id AA26719
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 28 Aug 1995 16:41:09 -0400
  5. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: File transfer through shell account?
  9. Message-Id: <1995Aug27.200953.59876@cc.usu.edu>
  10. Date: 27 Aug 95 20:09:53 MDT
  11. References: <41otv0$or4@omni.voicenet.com>
  12. Organization: Utah State University
  13. Lines: 20
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <41otv0$or4@omni.voicenet.com>, bobd@omni.voicenet.com (Bob Dougherty) writes:
  17. > I use MS-Kermit on a PC to dial into "Host A", where I have a shell account.
  18. > From there, I telnet to "Host B".  Is it possible to transfer files 
  19. > between the PC and Host B, in one apparent hop?  Host B has kermit
  20. > but when I try putting it in server mode I can't transfer files.
  21. --------
  22.     Think of matters this way. Host A is running an interactive
  23. shell for your PC to Host A communications link, and bytes going to
  24. or from that shell move along the wire to your PC. If you run a program
  25. (say telnet) on Host A bytes still move the same way. Now, after logging
  26. into Host B you put Kermit in server mode on it. You should be able
  27. to "escape back" (that means on the PC, ALT-x to get the MSK prompt)
  28. and issue get/send etc commands to that server Kermit. The gotcha may
  29. be the Host A part is not transparent to material having control
  30. codes such as Control-A (start of packet) and Control-M (carriage
  31. return, end of packet) which are Kermit packet delimiters.
  32.     Basically this ought to work IF the Kermit on Host B can
  33. talk down the telnet connection. So check the Host B part and maybe
  34. you will be in luck.
  35.     Joe D.